home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Resources / Developer & Web Development Tools / Inno Setup 5.2.3 / isetup-5.2.3.exe / {app} / Examples / Example1.iss (.txt) < prev    next >
Encoding:
Inno Setup Script  |  2006-10-03  |  616 b   |  19 lines

  1. ; -- Example1.iss --
  2. ; Demonstrates copying 3 files and creating an icon.
  3. ; SEE THE DOCUMENTATION FOR DETAILS ON CREATING .ISS SCRIPT FILES!
  4. [Setup]
  5. AppName=My Program
  6. AppVerName=My Program version 1.5
  7. DefaultDirName={pf}\My Program
  8. DefaultGroupName=My Program
  9. UninstallDisplayIcon={app}\MyProg.exe
  10. Compression=lzma
  11. SolidCompression=yes
  12. OutputDir=userdocs:Inno Setup Examples Output
  13. [Files]
  14. Source: "MyProg.exe"; DestDir: "{app}"
  15. Source: "MyProg.chm"; DestDir: "{app}"
  16. Source: "Readme.txt"; DestDir: "{app}"; Flags: isreadme
  17. [Icons]
  18. Name: "{group}\My Program"; Filename: "{app}\MyProg.exe"
  19.